home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_nfsd.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  92 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4.  
  5. #
  6. # See the Nessus Scripts License for details
  7. #
  8.  
  9. if(description)
  10. {
  11.  script_id(10219);
  12.  script_bugtraq_id(782);
  13.  script_version ("$Revision: 1.19 $");
  14.  script_cve_id("CVE-1999-0832", "CVE-2002-0830");
  15.  name["english"] = "nfsd service";
  16.  name["francais"] = "Service nfsd";
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "
  20. The nfsd RPC service is running.  In the past, this service has had bugs which allow an intruder to execute arbitrary commands on your system. In addition, FreeBSD 4.6.1 RELEASE-p7 and earlier, NetBSD 1.5.3 and earlier have a bug wherein sending a zero length packet to the RPC service will cause the operating system to hang.
  21.  
  22.  
  23. Solution : Make sure that you have the latest version of nfsd
  24.  
  25. Risk factor : High";
  26.  
  27.  
  28.  desc["francais"] = "
  29. Le service RPC nfsd tourne.
  30. Il y a un bug dans certaines versions
  31. de ce service qui permettent α un pirate
  32. d'executer des commandes arbitraires sur
  33. votre systΦme.
  34.  
  35. VΘrifiez que vous faites tourner la toute
  36. derniΦre version de nfsd.
  37.  
  38. Facteur de risque : ElevΘ";
  39.  
  40.  
  41.  script_description(english:desc["english"], francais:desc["francais"]);
  42.  
  43.  summary["english"] = "checks the presence of a RPC service";
  44.  summary["francais"] = "vΘrifie la prΘsence d'un service RPC";
  45.  script_summary(english:summary["english"], francais:summary["francais"]);
  46.  
  47.  script_category(ACT_GATHER_INFO);
  48.  
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  51.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  52.  family["english"] = "RPC"; 
  53.  family["francais"] = "RPC";
  54.  script_family(english:family["english"], francais:family["francais"]);
  55.  if ( ! defined_func("bn_random") )
  56.      script_dependencie("rpc_portmap.nasl");
  57.  else
  58.      script_dependencie("rpc_portmap.nasl", "ssh_get_info.nasl");
  59.  script_require_keys("rpc/portmap");
  60.  exit(0);
  61. }
  62.  
  63. #
  64. # The script code starts here
  65. #
  66.  
  67.  
  68. include("misc_func.inc");
  69. include("freebsd_package.inc");
  70.  
  71. if ( get_kb_item("Host/RedHat/release") ) exit(0);
  72. if ( get_kb_item("Host/Solaris/Version") ) exit(0);
  73. freebsd = get_kb_item("Host/FreeBSD/release");
  74. if ( freebsd )
  75. {
  76.  if ( pkg_cmp(pkg:freebsd, reference:"FreeBSD-4.6.1_7") >= 0 ) exit(0);
  77. }
  78.  
  79. RPC_PROG = 100003;
  80. tcp = 0;
  81. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  82. if(!port){
  83.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  84.     tcp = 1;
  85.     }
  86.  
  87. if(port)
  88. {
  89.  if(tcp)security_warning(port);
  90.  else security_warning(port, protocol:"udp");
  91. }
  92.